Satisfy check-style.sh
authorEwan Higgs <ewan_higgs@yahoo.co.uk>
Mon, 27 Feb 2017 14:27:43 +0000 (15:27 +0100)
committerEwan Higgs <ewan_higgs@yahoo.co.uk>
Mon, 27 Feb 2017 14:27:43 +0000 (15:27 +0100)
tests/init.rs

index 00d636be7c7d0eaa49efb16bc96688aa2d0e23a6..73947e54cbfe0c339943ee7d88e2851c237333ae 100644 (file)
@@ -96,7 +96,8 @@ fn bin_already_exists(explicit: bool, rellocation: &str, needs_bin_section: bool
     assert_eq!(Vec::from(content as &[u8]), new_content);
 
        let mut cargo_content = String::new();
-    File::open(&paths::root().join("foo/Cargo.toml")).unwrap().read_to_string(&mut cargo_content).unwrap();
+    File::open(&paths::root().join("foo/Cargo.toml")).unwrap()
+        .read_to_string(&mut cargo_content).unwrap();
        // Check that Cargo.toml has a bin section pointing to the correct location (if needed)
        if needs_bin_section {
                assert!(cargo_content.contains(r#"[[bin]]"#));
@@ -226,7 +227,8 @@ fn lib_already_exists(rellocation: &str, needs_lib_section: bool) {
     assert_eq!(Vec::from(content as &[u8]), new_content);
 
        let mut cargo_content = String::new();
-    File::open(&paths::root().join("foo/Cargo.toml")).unwrap().read_to_string(&mut cargo_content).unwrap();
+    File::open(&paths::root().join("foo/Cargo.toml")).unwrap()
+        .read_to_string(&mut cargo_content).unwrap();
        // Check that Cargo.toml has a lib section pointing to the correct location (if needed)
        if needs_lib_section {
                assert!(cargo_content.contains(r#"[lib]"#));